January 01, 2022
옵시디안용 웹 클리퍼를 사용하는 법을 기술한다. Mac에서 사용 중이고 윈도우에서는 되지 않을 수도 있다.
1
에서 복사한 코드를 붙여넣기한다.위와 같이 사용하면 root folder에 #clippings
라는 태그로 메모가 생성된다.
이 부분을 수정해보자.
//const folder = "";
const folder = 'folderName/'
14번 라인의 tags 변수를 아래와 같이 수정한다.
// const tags = "#clippings";
const tags = '#원하는태그'
클리핑된 노트의 경우 구분을 위해 Clip - {클리핑된 메모 제목}
과 같은 형태로 prefix가 붙기를 원했다.
여러가지 방법이 있지만 99번째 줄의 내용을 아래와 같이 수정할 수 있다.
document.location.href =
'obsidian://new?' +
//+ "file=" + encodeURIComponent(folder + fileName)
'file=' +
encodeURIComponent(folder + 'Clip - ' + fileName) +
'&content=' +
encodeURIComponent(fileContent) +
vaultName